home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000008_news@columbia.edu _Fri Mar 9 11:21:15 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA27048
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 9 Mar 2001 11:21:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA07900
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 9 Mar 2001 10:59:22 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: telnet file transfer
  11. Date: 9 Mar 2001 15:59:21 GMT
  12. Organization: Columbia University
  13. Message-ID: <98aukp$7mq$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <98aqm1$289$1@testinfo.cs.uoguelph.ca>,
  17. Amol Shukla <ashukla@uoguelph.ca> wrote:
  18. : i want to use telnet for transferring files from a host that doesn't run
  19. : a ftp daemon.. i want to telnet to a host, and move files around
  20. : providing an interface like:
  21. :      
  22. :    cp <file on client> <file on server>
  23. :    and vice-versa 
  24. : i can't use http,ftp,ssl, or ssh for this, only telnet/rlogin. can anyone
  25. : suggest as to how i may do this? is there a 3rd party software or an api
  26. : which provides similar functionality?
  27. :
  28. Yes, Kermit:
  29.  
  30.   http://www.columbia.edu/kermit/ckermit.html
  31.  
  32. It's a telnet and rlogin client with built-in file-transfer and scripting
  33. capabilities:
  34.  
  35. : also i can't run any of my software 
  36. : on the server, so i can't establish a socket & send the file (bytes) over 
  37. : the network.
  38. If the server already has Kermit installed, you can transfer text and binary
  39. files with Kermit protocol.  If it doesn't, you can "push" text files with
  40. Kermit's TRANSMIT command, which should be reliable enough over a Telnet
  41. connection, and you can "pull" them using Kermit's session log.
  42.  
  43. Or if the server has rz/sz installed, and you also have them on your local
  44. computer, then Kermit can use them as "external protocols" and you can
  45. transfer files that way.
  46.  
  47. OR...  You can install Kermit on the server yourself.  If you can log in
  48. to the server and "cat > foo", then you can upload a small uuencoded
  49. Kermit protocol program, uudecode it, and off you go.  For details see:
  50.  
  51.   http://www.columbia.edu/kermit/gkermit.html
  52.  
  53. Particularly the bootstrapping section at the end.
  54.  
  55.   http://www.columbia.edu/kermit/gkermit.html#boot
  56.  
  57. - Frank